home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19980901-19981211 / 000093_news@newsmaster….columbia.edu _Thu Oct 1 18:14:47 1998.msg < prev    next >
Internet Message Format  |  1998-12-10  |  4KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id SAA08687
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 1 Oct 1998 18:14:43 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id SAA00561
  7.     for kermit.misc@watsun; Thu, 1 Oct 1998 18:14:40 -0400 (EDT)
  8. From: pygmy@eskimo.com (Frank Sergeant)
  9. Newsgroups: comp.protocols.kermit.misc
  10. Subject: Re: overlays and IBM characters via telnet?
  11. Date: Thu, 01 Oct 1998 15:18:14 -0500
  12. Organization: Eskimo North (206) For-Ever
  13. Lines: 80
  14. Message-ID: <GO+E2Yv1u0EN084yn@eskimo.com>
  15. Reply-To: frank.sergeant@pobox.com
  16. NNTP-Posting-Host: eskimo.com
  17. Originator: pygmy@eskimo.com
  18. Path: news.columbia.edu!sol.ctr.columbia.edu!news.mindlink.net!paralynx!paralynx-2!news.mindlink.net!paralynx!paralynx-3!paralynx!paralynx-4!van-bc!paralynx!paralynx-1!news.vphos.net!news.idt.net!nntp2.cerf.net!nntp3.cerf.net!mvb.saic.com!news.eskimo.com!pygmy
  19. Xref: news.columbia.edu comp.protocols.kermit.misc:9276
  20.  
  21.  
  22. Jay Bratcher <jayb@onr.com> on the linux-msdos@vger.rutgers.edu list wrote:
  23. > Russell Poyner wrote:
  24. > >
  25. > > I am running a custom database program under dosemu that uses a
  26. > > lot of the fancier text-mode features including IBM graphic
  27. > > characters, overlays, colors and blinking text.  It looks great
  28. > > in xdos and I wonder if anyone knows of a telnet or PC-term type
  29. > > program that I could run on a remote machine that would display
  30. > > this stuff properly.
  31.  
  32. > > My hardware recycling dream is to run this telnet program on an
  33. > > old 8086 DOS box I have.  The database program is a bit slow when
  34. > > run native on the 8086, but should be fast when run on the server
  35. > > under dosemu and accessed via telnet.
  36.  
  37. > I think it sounds fairly sane - have you considered kermit?
  38.  
  39.      I have used Kermit for DOS (MSK) successfully to telnet
  40. from a DOS machine over ethernet to a Linux box and then run
  41. a Clipper application under the DOS emulator.  The DOS machine
  42. used an NE2000 card.  I downloaded the freely available packet
  43. driver for NE2000.  MSK supplied the TCP/IP and telnet.  The
  44. display is pretty good and at least most of the keys are working
  45. ok.  I wasn't able to put MSK into 25 line mode, but I was able
  46. to configure the Clipper application to use only 24 lines.
  47.  
  48. (I have also used Kermit 95 in this fashion from a Windows 95
  49. machine using W95 networking with good results -- it works fine
  50. in 25-line mode.  I have even used a one-floppy Linux disk to
  51. boot Linux and supply the Ethernet, TCP/IP, and telnet -- of
  52. course this requires at least a '386.)
  53.  
  54. Here is the CLIPPER.KSC file I use with MSK.  If anyone
  55. tries this and makes any improvements (or figures how to
  56. put MSK in 25-line mode), please post or email me the
  57. details.
  58.  
  59. ; fcs
  60. ; Setup keys for DOS Kermit to work with Clipper app under dosemu on linux
  61. ; Double up on the \30 for Ctrl-PgDn as it is the escape code in dosemu
  62. set key \1398 \30\30  ; Ctrl-PageDown
  63. set key \5494 \30\30  ; Gray-Ctrl-PageDown
  64. set key \1412 \31     ; Ctrl-PageUp
  65. set key \5508 \31     ; Gray-Ctrl-PageUp
  66.  
  67. set key \337  \3      ; PageDown
  68. set key \4433 \3      ; Gray-PageDown
  69. set key \329  \18     ; PageUp
  70. set key \4425 \18     ; Gray-PageUp
  71.  
  72. set key \327  \1      ; Home
  73. set key \4423 \1      ; Home
  74. set key \335  \6      ; End
  75. set key \4431 \6      ; End
  76.  
  77. set key \315   \28       ; K_F1
  78. set key \316   \x1B[[B   ; K_F2  use the K95 sequence
  79. set key \317   \x1B[[C   ; K_F3  use the K95 sequence
  80. set key \318   \x1B[[D   ; K_F4  use the K95 sequence
  81. set key \319   \x1B[[E   ; K_F5
  82. set key \320   \x1B[17~  ; K_F6
  83. set key \321   \x1B[18~  ; K_F7
  84. set key \322   \x1B[19~  ; K_F8
  85. set key \323   \x1B[20~  ; K_F9
  86. set key \324   \x1B[21~  ; K_F10
  87. set key \389   \x1B[22~  ; K_F11
  88. set key \390   \x1B[23~  ; K_F12
  89.  
  90. ; I'd like to do the following for Alt-C, but it comes
  91. ;  out as \46 instead of \302
  92. ;set key \2147 \302    ; Alt-C
  93.  
  94. ;set mode-line on
  95. set mode-line off